home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / crusade_.swf / scripts / frame_2 / DoAction.as
Text File  |  2010-11-09  |  176b  |  12 lines

  1. var logoTimer = 0;
  2. stop();
  3. logo_mov.onEnterFrame = function()
  4. {
  5.    logoTimer++;
  6.    if(logoTimer == 150)
  7.    {
  8.       gotoAndStop("start_scene");
  9.       play();
  10.    }
  11. };
  12.